home *** CD-ROM | disk | FTP | other *** search
- /* Mandtory ARexx comment */
-
- /* 8-25-95 00:00 This program controlls the playing of iff files */
-
- /* This is used in training the birds to talk */
-
- /* the config should be no quickstart and 0 timeout */
-
-
-
- do forever
-
-
-
- Address Command /* DOS is getting the next command */
-
-
-
-
-
- date
-
- say "Wating til 9:00 am"
-
- 'wait until 09:00' /*first playing time in the morning */
-
- call play_4()
-
- date
-
- say "Waiting til 1:00 pm"
-
- 'wait until 13:00'
-
- call play_4()
-
- date
-
- say 'Waiting til 6:00 '
-
- 'wait until 18:00' /* wait until 6:00 pm */
-
- call play_4()
-
- end
-
- return /program end */
-
-
-
- play_4: procedure
-
- /* Mandatory Rexx Coment */
-
- /* October 3 1995 */
-
- /* This is a do loop that plays songs. */
-
- /* The number of times is deterimned by the variable "SONGS" */
-
- songs = 4
-
-
-
- do count = 1 to songs
-
- address delitracker
-
- playpause
-
- say "Playing song" count
-
- address command
-
- wait 4 min
-
- address delitracker
-
- nextsong
-
- end
-
- return
-
-
-
-